home *** CD-ROM | disk | FTP | other *** search
- ; *******************************************************
- ; Example 1 - Open a browser with the table example, get a reference to the second table
- ; on the page (index 1) and read its contents into a 2-D array
- ; *******************************************************
- ;
- #include <IE.au3>
- $oIE = _IE_Example ("table")
- $oTable = _IETableGetCollection ($oIE, 1)
- $aTableData = _IETableWriteToArray ($oTable)